home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Dev / ace23.lha / MAIN.lha / include / stddef.h < prev    next >
Text File  |  1994-10-22  |  395b  |  18 lines

  1. '..Some useful, often used CONST definitions for ACE programs.
  2.  
  3. '..null pointer
  4. CONST NULL = 0&
  5.  
  6. '..boolean values
  7. CONST true = -1&
  8. CONST false = 0&
  9.  
  10. '..maxima & minima
  11. CONST MaxInt       =  2147483647
  12. CONST MinInt       = -2147483648
  13. CONST MaxShort       =  32767        
  14. CONST MinShort       = -32768        
  15. CONST MaxReal      =  9.22337177E+18
  16. CONST MinReal      = -9.22337177E+18
  17. CONST MAXSTRINGLEN =  1024&
  18.